home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / settimeofday.c < prev    next >
C/C++ Source or Header  |  1988-11-07  |  2KB  |  76 lines

  1. /* 
  2.  * settimeofday.c --
  3.  *
  4.  *    Procedure to map from Unix settimeofday system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/settimeofday.c,v 1.3 88/11/07 14:43:30 douglis Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include <sprite.h>
  15. #include <spriteTime.h>
  16.  
  17. #include "compatInt.h"
  18. #include <sys/time.h>
  19.  
  20.  
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * settimeofday --
  26.  *
  27.  *    Procedure to map from Unix settimeofday system call to 
  28.  *    Sprite Sys_SetTimeOfDay.
  29.  *
  30.  * Results:
  31.  *    UNIX_SUCCESS     - the call was successful.
  32.  *    UNIX_ERROR     - the call was not successful. 
  33.  *              The actual error code stored in errno.  
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. settimeofday(tp, tzp)
  43.     struct timeval *tp;
  44.     struct timezone *tzp;
  45. {
  46.     ReturnStatus status;    /* result returned by Sys_SetTimeOfDay */
  47.  
  48.     /*
  49.      * Unix negates the local offset from UTC to make it positive
  50.      * for locations west of the prime meridian. 
  51.      */
  52.  
  53.     if (tzp == NULL) {
  54.     int localOffset;
  55.     Boolean DST;
  56.  
  57.     status = Sys_GetTimeOfDay((Time *) NULL, &localOffset, &DST);
  58.     status = Sys_SetTimeOfDay(tp, localOffset, DST);
  59.     } else if (tp == NULL) {
  60.     Time currentTime;
  61.  
  62.     status = Sys_GetTimeOfDay(¤tTime, (int *) NULL,
  63.                   (Boolean *) NULL);
  64.     status = Sys_SetTimeOfDay(¤tTime,  -(tzp->tz_minuteswest),
  65.                   tzp->tz_dsttime);
  66.     } else {
  67.     status = Sys_SetTimeOfDay(tp, -(tzp->tz_minuteswest), tzp->tz_dsttime);
  68.     }
  69.     if (status != SUCCESS) {
  70.     errno = Compat_MapCode(status);
  71.     return(UNIX_ERROR);
  72.     } else {
  73.     return(UNIX_SUCCESS);
  74.     }
  75. }
  76.